home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / VBASIC / RESIZOCX.ZIP / FORM3.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-12-15  |  3.1 KB  |  108 lines

  1. VERSION 4.00
  2. Begin VB.Form Form3 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H80000005&
  5.    Caption         =   "ReSize - Line handling"
  6.    ClientHeight    =   3150
  7.    ClientLeft      =   1635
  8.    ClientTop       =   3060
  9.    ClientWidth     =   6030
  10.    BeginProperty Font 
  11.       name            =   "MS Sans Serif"
  12.       charset         =   1
  13.       weight          =   700
  14.       size            =   8.25
  15.       underline       =   0   'False
  16.       italic          =   0   'False
  17.       strikethrough   =   0   'False
  18.    EndProperty
  19.    ForeColor       =   &H80000008&
  20.    Height          =   3555
  21.    Icon            =   "FORM3.frx":0000
  22.    Left            =   1575
  23.    LinkTopic       =   "Form3"
  24.    ScaleHeight     =   3150
  25.    ScaleWidth      =   6030
  26.    Top             =   2715
  27.    Width           =   6150
  28.    Begin VB.CommandButton Command1 
  29.       Appearance      =   0  'Flat
  30.       BackColor       =   &H80000005&
  31.       Caption         =   "OK"
  32.       Height          =   372
  33.       Left            =   2040
  34.       TabIndex        =   1
  35.       Top             =   2400
  36.       Width           =   1692
  37.    End
  38.    Begin ResizeLibCtl.ReSize ReSize1 
  39.       Left            =   360
  40.       Top             =   2520
  41.       _version        =   131072
  42.       _extentx        =   741
  43.       _extenty        =   741
  44.       _stockprops     =   0
  45.       enabled         =   -1  'True
  46.       formminwidth    =   0
  47.       formminheight   =   0
  48.       formdesignheight=   3150
  49.       formdesignwidth =   6030
  50.    End
  51.    Begin VB.Line Line5 
  52.       X1              =   1440
  53.       X2              =   4320
  54.       Y1              =   2160
  55.       Y2              =   2160
  56.    End
  57.    Begin VB.Line Line4 
  58.       X1              =   5040
  59.       X2              =   5040
  60.       Y1              =   1440
  61.       Y2              =   1920
  62.    End
  63.    Begin VB.Line Line3 
  64.       X1              =   720
  65.       X2              =   720
  66.       Y1              =   1440
  67.       Y2              =   1920
  68.    End
  69.    Begin VB.Line Line2 
  70.       X1              =   1440
  71.       X2              =   4320
  72.       Y1              =   1920
  73.       Y2              =   1440
  74.    End
  75.    Begin VB.Line Line1 
  76.       X1              =   1440
  77.       X2              =   4320
  78.       Y1              =   1440
  79.       Y2              =   1920
  80.    End
  81.    Begin VB.Label Label1 
  82.       Appearance      =   0  'Flat
  83.       BackColor       =   &H80000005&
  84.       Caption         =   $"FORM3.frx":030A
  85.       BeginProperty Font 
  86.          name            =   "Arial"
  87.          charset         =   1
  88.          weight          =   700
  89.          size            =   7.5
  90.          underline       =   0   'False
  91.          italic          =   0   'False
  92.          strikethrough   =   0   'False
  93.       EndProperty
  94.       ForeColor       =   &H80000008&
  95.       Height          =   852
  96.       Left            =   360
  97.       TabIndex        =   0
  98.       Top             =   240
  99.       Width           =   5292
  100.    End
  101. Attribute VB_Name = "Form3"
  102. Attribute VB_Creatable = False
  103. Attribute VB_Exposed = False
  104. Option Explicit
  105. Private Sub Command1_Click()
  106.     Unload Form3
  107. End Sub
  108.